gsk: Fix a typo
authorMatthias Clasen <mclasen@redhat.com>
Fri, 29 Sep 2017 01:06:52 +0000 (21:06 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 29 Sep 2017 01:06:52 +0000 (21:06 -0400)
Repeating linear gradient nodes share most of the implementation
with linear gradient nodes, but they shouldn't share the class name.

gsk/gskrendernodeimpl.c

index bda975de1821f6ef7f5661b6c4a517023377d48f..f0c0f02612364cbd17fa2a46168e9efab6c670c9 100644 (file)
@@ -294,7 +294,7 @@ static const GskRenderNodeClass GSK_LINEAR_GRADIENT_NODE_CLASS = {
 static const GskRenderNodeClass GSK_REPEATING_LINEAR_GRADIENT_NODE_CLASS = {
   GSK_REPEATING_LINEAR_GRADIENT_NODE,
   sizeof (GskLinearGradientNode),
-  "GskLinearGradientNode",
+  "GskRepeatingLinearGradientNode",
   gsk_linear_gradient_node_finalize,
   gsk_linear_gradient_node_draw,
   gsk_linear_gradient_node_serialize,